home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / e-lang / gaugplgn.lha / gauge.doc next >
Text File  |  1996-03-14  |  2KB  |  65 lines

  1. Gauge Plugin
  2. ------------
  3.  
  4. Copyright by Ralph Wermke of Digital Innovations
  5.  
  6. This piece of software is FREEWARE, so you can use it in your own
  7. programs without contacting the author.
  8.  
  9. But feel free to contact me for ideas, bug reports or what ever you want:
  10.  
  11. Ralph Wermke
  12. Prokofjewstr. 7 B
  13. Greifswald
  14. 17491
  15. Germany
  16.  
  17. or per E-Mail:
  18.  
  19. wermke@gryps1.rz.uni-greifswald.de
  20.  
  21. ----------------------------------------------------------------------
  22.  
  23. Description of available methods:
  24. ---------------------------------
  25.  
  26.   gauge( taglist )
  27.  
  28.     This method initialises the plugin.
  29.  
  30.     <taglist> is a pointer to a normal taglist.
  31.  
  32.     The following tags are available:
  33.  
  34.     - GAUGE_BorderX        : borderheight
  35.     - GAUGE_BorderY        : borderwidth
  36.     - GAUGE_Units          : max. value
  37.     - GAUGE_BorderType     : GTYP_NONE         ; no border
  38.                              GTYP_SINGLE       ; single border
  39.                              GTYP_DOUBLE       ; double border
  40.     - GAUGE_InitState      : inital value (from 0 to GAUGE_Units)
  41.     - GAUGE_FillPen        : color of the bar
  42.     - GAUGE_BackPen        : color behind the bar
  43.     - GAUGE_BorderPen      : color of the border
  44.     - GAUGE_Height         : fixed height
  45.     - GAUGE_Width          : fixed width
  46.     - GAUGE_Border         : GTYP_3D          ; 3D border
  47.                              GTYP_2D          ; flat border
  48.                              GTYP_XEN         ; xen-style border
  49.     - GAUGE_Bar            : GTYP_3D          ; 3D bar
  50.                              GTYP_2D          ; flat bar
  51.                              GTYP_XEN         ; xen-style bar
  52.     - GAUGE_BorderRecessed : (boolean)
  53.     - GAUGE_BarRecessed    : (boolean)
  54. (   - GAUGE_Direction      : not available yet)
  55.  
  56. -> not all options are available for every bordertype
  57.  
  58.   set( newstate )
  59.  
  60.     set the new state of the bar (between 0 and GAUGE_Units)
  61.  
  62.  
  63. ** If there a futher questions or problems take a look at the example
  64. ** source or write me a mail.
  65.